home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / 92052tar.gz / 920528.tar / finger.h < prev    next >
C/C++ Source or Header  |  1991-06-02  |  928b  |  31 lines

  1. /* @(#) $Header: finger.h,v 1.4 91/06/01 22:18:04 deyke Exp $ */
  2.  
  3. /*
  4.  *
  5.  *      Finger support...
  6.  *
  7.  *      Finger header defines.  Written by Michael T. Horne - KA7AXD.
  8.  *      Copyright 1988 by Michael T. Horne, All Rights Reserved.
  9.  *      Permission granted for non-commercial use and copying, provided
  10.  *      that this notice is retained.
  11.  *
  12.  */
  13.  
  14. #define FINGER_PORT     79      /* TCP port for `who' (finger) service */
  15. #define FINGNAMELEN     8       /* max len of user name */
  16.  
  17. /* finger protocol control block */
  18. struct finger {
  19.     struct tcb      *tcb;           /* pointer to associated tcb */
  20.     struct session  *session;       /* pointer to finger session */
  21.     char            *user;          /* name of user to finger */
  22. };
  23. #define NULLFING        (struct finger *) 0
  24.  
  25. extern char             *fingersuf,     /* see files.c */
  26.             *fingerpath;
  27.  
  28. /* In finger.c: */
  29. void fingcli_rcv __ARGS((struct tcb *tcb, int cnt));
  30.  
  31.